home *** CD-ROM | disk | FTP | other *** search
- Path: netnews.hinet.net!ms1!donny
- From: donny@ms1.hinet.net (Donny Lee)
- Newsgroups: comp.lang.c++
- Subject: class object member & Inherit?
- Date: 2 Feb 1996 19:05:05 GMT
- Organization: DCI HiNet
- Message-ID: <4etn91$gud@netnews.hinet.net>
- NNTP-Posting-Host: ms1.hinet.net
- X-Newsreader: TIN [version 1.2 PL2]
-
-
- Here comes another question, Class object member and Inherit.
-
- class Word {
- :
- String str; // another class
- };
- ------------------
- class Word : private String {
- :
- :
- }
-
- What's the main difference in human mind and practice between
- the two?
-
- // Donny
-
-